home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / mint / mntscalc.zoo / sc_6.21 / readme.st < prev    next >
Encoding:
Text File  |  1993-12-12  |  3.3 KB  |  98 lines

  1. SC : A curses based sophisticated spreadsheet for UNIX.
  2.      Ported to ATARI ST (Mint/MultiTOS) by Kees Lemmens; Dec '93
  3.  
  4.  -------------------------------------------------------------------------
  5.  
  6.  
  7. This spreadsheet is very popular under UNIX users. Under UNIX there is
  8. also an X-windows version with many graphic capabilities, called xspread.
  9.  
  10. It is slightly different from Lotus 123 (or clones) but it certainly
  11. isn't less powerfull and it has a few nice extra features.
  12. Furthermore: ... it is Public Domain. 
  13.  
  14. Features/Missings :
  15.  
  16. - SC is a .ttp program under ATARI, so it can run on every remote terminal
  17.   that is listed in the termcap database or separate TOSWIN.
  18.   It even runs without problems (and fast !) over a modemline, thanks to
  19.   the very efficient way curses works for slow or distant terminals.
  20.  
  21. - As SC is a .TTP program, it doesn't support graphics, so you need i.e.
  22.   GnuPlot to visualize things. (But ... GnuPlot is thousand times more
  23.   sophisticated than any spreadsheet I have ever seen and it can run over
  24.   a modemline when using Tektronix emulation !)
  25.  
  26. - SC sees any character you type as a command and not as input, although
  27.   you can toggle (Ctrl-T n) SC to directly interpret numerical input.
  28.   The latter is also achieved by the commandline option -n 
  29.  
  30.   To insert text there are basically three ways :
  31.     < text         (left justified)
  32.     > text        (right justified)
  33.     " text        (centered)
  34.  
  35.   To insert a number :    = number
  36.   and a formula      :    = expression    (same as in Lotus)
  37.  
  38.   When numerical input is enabled, every 0-9, +, -, . will start a cell
  39.   entry.
  40.  
  41. - Range commands can be given by pressing / (like 123 !)
  42.  
  43.   Look in the manual for details.
  44.    
  45.   If you mark a cell by pressing 'm' , you can copy it to any other cell,
  46.   just by going there and pressing 'c'
  47.  
  48. - Cursor keys :
  49.  
  50.   3 ways :    VI style :    h, j, k, l 
  51.           Emacs    :    ^b, ^f, ^n, ^p
  52.  
  53.   Cursorkeys are only available if your terminal and the termcap entry on
  54.   the ATARI support them.
  55.   The ATARI cursor keys (scancodes) are hardcoded, so on the ATARI console
  56.   the cursor keys will always work (also in TOSWIN).
  57.  
  58. - Shell escapes: the standard shell was taken either from SHELL variable 
  59.   or /bin/sh. I changed the latter in /bin/mintshel.ttp as this is commonly
  60.   used on ATARI.
  61.  
  62.  
  63. Executables
  64. -----------
  65.  
  66. The executable for sc (sc.ttp)  was generated by GCC 2.4.5 with MINTLIBS 34.
  67. PURE C didn't work because it didn't handle the bison/yacc output in a proper
  68. way.
  69.  
  70. The other two (psc.ttp and scqref.ttp) were generated by PURE C with the
  71. MINT libraries and GNU includes (also version 34) because :
  72.  
  73. a:    PURE C is more than 10 times as fast than GCC  !!!
  74. b:    PURE C generates code that is about half the GCC code size !!!
  75. c:    GCC compiler needs about 5 times as much internal memory as PCC !!!
  76.  
  77. GCC is a nice compiler and it compiles almost everything without problems,
  78. but I don't want to wait an hour for my code to be compiled, especially
  79. because I can't use my ATARI for anything else as GCC eats virtually all
  80. internal memory of my 4 MB (!!) MEGA STE.
  81.  
  82.  
  83. Files in this archive
  84. ---------------------
  85.  
  86.     sc.ttp
  87.     psc.ttp
  88.     scqref.ttp
  89.     sc.doc
  90.     psc.doc
  91.     tutorial.sc
  92.     readme        (from original distribution)
  93.     readme.st    (this file)
  94.  
  95.  
  96. Any remarks or suggestions about these programs can be send to:
  97. lemmens@dv.twi.tudelft.nl
  98.